-- Randomly transfer MUs
-- Transfers the MUs to each successor with the same probability. It is of no importantance how many MUs have already been transferred to the different successors.
-- Random transfer of the MUs
-- Transfers the MUs to each successor with the same probability. It is of no importantance how 
-- many MUs have already been transferred to the different successors. 
-- @ is the MU that triggers the control
-- ? is the station calling this method
is
do
	@.move(z_uniform(stream, 0.0, ?.numSucc));
end;
/*stream:Enter the random number stream here.
*/